/* ===== PROGRAM CARDS SECTION ===== */


.section-heading {
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.section-subtext {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

/* Program Card */
.program-card {
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  /* padding: 28px 22px 24px; */
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #d1d5db;
}

.bg-cli {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 28px 22px 24px;
}
.bg-cli1 {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 28px 22px 24px;
    background: #11271818;
}
.bg-cli2 {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 28px 22px 24px;
    background: #11271818;
}
.bg-cli3 {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 28px 22px 24px;
    background: #11271818;
}

/* Card with featured styling (3rd card - greenish) */
.card-featured {
  background: #d4e4e0;
  border-color: #b8cfc8;
}

.card-featured:hover {
  border-color: #9fb8af;
}

/* Card Icon */
.card-icon {
  width: 52px;
  height: 52px;
  background: #041E80;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon i {
  font-size: 24px;
  color: #ffffff;
}

/* If using Font Awesome or custom icons */
.icon-book-open::before { content: "📖"; }
.icon-certificate::before { content: "🎖️"; }
.icon-globe::before { content: "🌐"; }
.icon-graduation::before { content: "🎓"; }

/* Card Title */
.card-title {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  /* margin-bottom: 8px; */
}

/* Card Description */
.card-description {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 18px;
  
}

/* Divider */
.card-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0 0 18px;
}

.card-featured .card-divider {
  background: #b8cfc8;
}


/* Card Button */
.card-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-btn:hover {
  background: #1e293b;
  transform: scale(1.02);
  color: #ffffff;
}

.card-featured .card-btn {
  background: #0f172a;
}

.card-featured .card-btn:hover {
  background: #1e293b;
}

/* Responsive */
@media (max-width: 991px) {
  .program-card {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .program-cards-section {
    padding: 50px 0;
  }
  
  .section-heading {
    font-size: 24px;
  }
}
